home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 February / Macworld (1999-02).dmg / Serious Demos / XTension demo / Scripts / Front Door Motion.On < prev    next >
Text File  |  1998-07-28  |  263b  |  12 lines

  1. -- motion at front door
  2.  
  3. turnon "Foyer Chime"
  4. write log "Motion at the front door"
  5.  
  6. --  this is one way of using the special unit Daylight
  7. --  to avoid turning on lights during the day...
  8.  
  9. if (status of (daylight)) is false then
  10.     turnon "Front Door Light"
  11. end if
  12.